home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000144_news@columbia.edu_Sun Aug 13 01:28:30 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03640
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 12 Aug 1995 21:28:35 -0400
  3. Received: by apakabar.cc.columbia.edu id AA15894
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 12 Aug 1995 21:28:34 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: HELP: xferring(displaying) 8bit char.set thru kermit
  9. Date: 13 Aug 1995 01:28:30 GMT
  10. Organization: Columbia University
  11. Lines: 34
  12. Message-Id: <40jkfu$fgk@apakabar.cc.columbia.edu>
  13. References: <403sen$d9q@news.ccit.arizona.edu> <40gj6s$rb0@vassun0.macau.ctm.net>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <40gj6s$rb0@vassun0.macau.ctm.net>,
  18. SAM, Chi-Kin  (Mr.) <cksam@macau.ctm.net> wrote:
  19. >jshin@aruba.ccit.arizona.edu (Jae H Shin) wrote:
  20. >>i'm trying to display 8bit char.set thru c-kermit.
  21. >>what do i need to set for proper display?
  22. >Try to set the file type to binary in both ends. If the problem still
  23. >exist, check your host. Some system/OS only support 7bit. For example
  24. >old version of UNIX.
  25. >
  26. First of all, for 8-bit display, "simply" make sure that your terminal or
  27. window (e.g. cxterm) supports the same Chinese character set as the remote
  28. host: usually either Guo Biao (GB) or Big5.  Then tell C-Kermit to:
  29.  
  30.   set parity none
  31.   set command bytesize 8
  32.   set terminal bytesize 8
  33.   set terminal character-set transparent
  34.  
  35. and off you go.  Also make sure the remote host does not strip the 8th
  36. bit; e.g. use a command like "stty pass8" or "stty cs8 -istrip" on a
  37. remote UNIX system, or "set terminal /eightbit" on VMS, etc.
  38.  
  39. >BTW if you want to display ideographics char. such as: Chinese,
  40. >Japanese, etc. on a host which only support 7bit there some altenative
  41. >coding formation to work around this kind of limitation. In these case
  42. >you better rewrite you question and post it alt.chinese.computing.
  43. >c-kermit can't help you.
  44. >
  45. That's not necessarily true.  The same idea applies here too.  If your
  46. terminal or display window supports the 7-bit representation for Chinese
  47. such as HZ/B5E3 or ZW (as do some chinese DOS versions, like ZWDOS), then
  48. C-Kermit certainly will not stand in the way.
  49.  
  50. - Frank